@charset "UTF-8";
.modal-open {
  overflow-y: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12001;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  display: block;
  position: relative;
  margin: 80px auto;
  max-width: 840px;
  width: 100%;
}

.modal-content {
  background-clip: padding-box;
  outline: 0;
  padding: 0 20px;
  position: relative;
}

.modal-body {
  background-color: #fff;
  padding: 50px 40px 80px;
  position: relative;
}

.modal-ttl {
  margin-bottom: 13px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #000;
}

.modal-movie {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.21621622%;
}

.modal-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-close {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__btn__close%20png) no-repeat top left;
  background-size: 100% auto;
  border: none;
  border-radius: 0;
  font-size: 0;
  margin: auto;
  cursor: pointer;
  position: absolute;
  right: 0;
  width: 39px;
  height: 39px;
  top: 0;
}

.modal-print {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__btn__print%20png) no-repeat top left;
  background-size: 100% auto;
  border: none;
  border-radius: 0;
  font-size: 0;
  margin: auto;
  cursor: pointer;
  position: absolute;
  right: 0;
  width: 39px;
  height: 39px;
  bottom: 0;
}

.g-modal_close {
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background-image: url(/-/media/Project/Daikin/ac_daikin_co_jp/ac_common/images/ac_icon-close%20svg);
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
  background-color: transparent;
}

.g-modal_close::before {
  content: none;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.contactModal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  overscroll-behavior-y: contain;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow-y: scroll;
}

.contactModal__content {
  padding: 40px;
  max-width: 920px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  z-index: 1;
}

.contactModal__inner {
  position: relative;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: inherit;
  overflow: hidden;
}

.contactModal__close {
  position: absolute;
  top: 0;
  right: 5px;
}

.contactModal__close p {
  width: 35px;
  aspect-ratio: 1/1;
  border-radius: 35px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  position: relative;
}

.contactModal__close p::before, .contactModal__close p::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.contactModal__close p::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.contactModal__close p::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.contactModal__bg {
  position: absolute;
  inset: 0;
}

.contactModal .is-pc {
  display: block;
}

.contactModal .is-sp {
  display: none;
}

.contactModal.is-show {
  opacity: 1;
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.contactModalTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.contactModalTab__block a {
  padding: 0 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 78px;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
}

.contactModalTab__block a:hover {
  text-decoration: none;
}

.contactModalTab__block a::before {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
}

.contactModalTab__block--setting {
  width: clamp(0px, 59.52381vw, 500px);
}

.contactModalTab__block--setting a {
  background-color: #ef701c;
  gap: 15px;
}

.contactModalTab__block--setting a::before {
  content: "";
  display: block;
  width: 75px;
  height: 74px;
  background-image: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/tab_soudan png");
  top: -7px;
}

.contactModalTab__block--repair {
  width: clamp(0px, 38.09524vw, 320px);
}

.contactModalTab__block--repair a {
  background-color: #0097e0;
  gap: 10px;
}

.contactModalTab__block--repair a::before {
  content: "";
  display: block;
  width: 93px;
  height: 70px;
  background-image: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/tab_repair png");
}

.contactModalTab__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.contactModalTab__label {
  padding: 0.2em 0.3em;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #ef701c;
  background-color: #fff;
  border-radius: 2px;
}

.contactModalTab__name {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contactModalMain {
  padding: 30px 40px;
  background-color: #fff;
  border: 5px solid #ef701c;
  width: 100%;
  position: relative;
  grid-area: 1/1;
  pointer-events: none;
  opacity: 0;
}

.contactModalMain--setting {
  border: 6px solid #ef701c;
}

.contactModalMain--repair {
  border: 6px solid #0097e0;
}

.contactModalMain__lead {
  margin-bottom: 20px;
  text-align: center;
}

.contactModalMain__heading {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
}

.contactModalMain__text {
  font-size: 20px;
}

.contactModalMain.is-show {
  pointer-events: auto;
  opacity: 1;
}

.contactModalCta {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.contactModalCta__block {
  width: 100%;
}

.contactModalCta__block--form a {
  display: block;
  height: 100%;
  --bgColor: #ef701c;
}

.contactModalCta__block--form a:hover {
  text-decoration: none;
  --bgColor: #f17e33;
}

.contactModalCta__block--tel a {
  pointer-events: none;
}

.contactModalForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  background-color: var(--bgColor);
  border-radius: 6px;
}

.contactModalForm::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 24px;
  background-image: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/icn_mail_wh png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contactModalForm::after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contactModalTel {
  text-align: center;
}

.contactModalTel__heading {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.contactModalTel__number {
  margin: 0 auto;
  width: 260px;
}

.contactModalTel__number img {
  width: 100%;
  display: block;
}

.contactModalTel__time {
  font-size: 14px;
}

.contactModalOther__heading {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  word-break: keep-all;
  font-size: 16px;
}

.contactModalOther__heading::before, .contactModalOther__heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #7e7e7e;
}

.contactModalOther__blocks {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

.contactModalOther__block {
  width: 100%;
  height: 60px;
}

.contactModalOther__block--catalog {
  --iconImage: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/icn_catalog png");
  --iconWidth: 21px;
  --iconRatio: 21 / 18;
}

.contactModalOther__block--webCatalog {
  --iconImage: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/icn_webcatalog png");
  --iconWidth: 21px;
  --iconRatio: 21 / 18;
}

.contactModalOther__block--parts {
  --iconImage: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/icn_parts png");
  --iconWidth: 23px;
  --iconRatio: 23 / 18;
}

.contactModalOther__block--showroom {
  --iconImage: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/icn_fuha png");
  --iconWidth: 30px;
  --iconRatio: 30 / 30;
}

.contactModalOther__block a {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  border: 1px solid #7e7e7e;
  border-radius: 6px;
}

.contactModalOther__block a::before {
  content: "";
  display: block;
  width: var(--iconWidth);
  aspect-ratio: var(--iconRatio);
  background-image: var(--iconImage);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contactModalOther__block a::after {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contactModalOther__block a span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contactModalOther__business {
  text-align: center;
}

.contactModalOther__business a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  color: #000;
  font-weight: 600;
}

.contactModalOther__business a::after {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contactModalNews {
  margin-top: 20px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  background-color: rgba(239, 112, 28, 0.1);
}

.contactModalRepair {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contactModalRepair__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.contactModalRepair__block--aichat {
  --iconHeight: 90px;
  --iconImgHeight: 90px;
}

.contactModalRepair__block--default {
  --iconHeight: 90px;
  --iconImgHeight: 70px;
  position: relative;
}

.contactModalRepair__block--default::after {
  content: "";
  display: none;
  width: 6px;
  aspect-ratio: 1/1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 22px;
  right: 20px;
}

.contactModalRepair__name {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.contactModalRepair__inner {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contactModalRepair__inner a {
  padding: 15px 20px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #7e7e7e;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
}

.contactModalRepair__icon {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: var(--iconHeight);
}

.contactModalRepair__icon img {
  width: 100%;
  height: var(--iconImgHeight);
  -o-object-fit: contain;
     object-fit: contain;
}

.contactModalRepair__text {
  line-height: 1.6;
}

.contactModalAnnounce {
  margin-bottom: 20px;
  padding: 15px 20px;
  background-color: #f8d7da;
  font-size: 16px;
}

.contactModalAnnounce__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.contactModalAnnounce__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

.contactModalAnnounce__heading::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/icon_notice png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contactModalAnnounce__text a {
  color: #005fcc;
  text-decoration: underline;
}

.contactModalAnnounce__text a:hover {
  color: #c00;
}

#cv_floating {
  padding: 0;
}

.contactModalFloatingBnr {
  padding: 0 10px 0 10px;
  background-color: rgba(35, 35, 35, 0.9);
  position: relative;
  height: 80px;
}

.contactModalFloatingBnr__inner {
  margin: 0 auto;
  max-width: 960px;
  height: inherit;
  position: relative;
}

.contactModalFloatingBnr__btns {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}

.contactModalFloatingBnr__btn {
  height: 100%;
}

.contactModalFloatingBnr__btn img {
  width: auto;
  height: 100%;
}

body .contactModal {
  z-index: 120;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .contactModal.is-show .ac_cv-modal__tabs,
body .contactModal.is-show .ac_cv-modal__container {
  pointer-events: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
   -ms-user-select: auto;
       user-select: auto;
}

body .contactModal.is-show .ac_cv-modal__tabs {
  height: 72px;
}

body .contactModal__bg {
  position: fixed;
}

/* Base
   ========================================================================== */
html {
  font-size: 16px;
}

body {
  padding-bottom: 90px;
}

img {
  height: auto;
  max-width: 100%;
}

div.main {
  color: #4f5169;
  font-family: "Hiragino Sans W5", "Hiragino Kaku Gothic ProN", "Noto Sans JP";
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

picture {
  display: block;
  font-size: 0;
}

sup {
  vertical-align: super;
}

/* ページ内共通
   ========================================================================== */
.u-hidden {
  display: none !important;
}

.fade {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.fade.fade--show {
  opacity: 1;
}

.fade--delay03s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fade--delay06s {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.fade--delay09s {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.fade--delay12s {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.fade--delay15s {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.fade--delay18s {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.u-bb--none {
  border-bottom: none !important;
}

.btn {
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:visited {
  color: #fff;
}

.btn span {
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
}

.btn.btn--primary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #222867;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 10px 23px 10px 9px;
  width: 337px;
}

.btn.btn--primary::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__arrow-right-white01%20svg) no-repeat top left;
  background-size: contain;
  content: '';
  display: block;
  height: 14px;
  pointer-events: none;
  position: absolute;
  right: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
}

.btn.btn--secondary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(148deg, #80dfff -20.52%, #008cd0 112.31%);
  border: 1px solid #fff;
  border-radius: 100px;
  -webkit-box-shadow: 0px 0px 4px 0px #0097e0;
          box-shadow: 0px 0px 4px 0px #0097e0;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  padding: 5px 40px;
  text-align: center;
  text-shadow: 0px 0px 4px #0097e0;
  width: 337px;
}

.btn.btn--secondary::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__arrow-right-aside%20svg) no-repeat top left;
  background-size: auto 100%;
  content: '';
  display: block;
  height: 19px;
  pointer-events: none;
  position: absolute;
  right: 18.19px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
}

.section {
  background: #fff;
  padding-top: 64px;
  position: relative;
}

.section.section--intro {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__intro__bg%20jpg) repeat top left;
  background-size: cover;
  padding-bottom: 238px;
  padding-top: 71px;
}

.section.section--intro::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-pc%20svg) no-repeat top left;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 5.78331vw;
  left: 0;
  pointer-events: none;
  position: absolute;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  width: 100%;
}

.section.section--premium {
  padding-bottom: 109px;
}

.section.section--clean-streamer {
  padding-bottom: 184px;
  padding-top: 143px;
}

.section.section--clean-streamer::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-pc%20svg) no-repeat top left;
  background-size: cover;
  content: '';
  display: block;
  height: 5.78331vw;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section.section--clean-streamer::after {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-pc%20svg) no-repeat top left;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  height: 5.78331vw;
  left: 0;
  pointer-events: none;
  position: absolute;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  width: 100%;
}

.section.section--energy-save {
  padding-bottom: 139px;
}

.section.section--outdoor-unit {
  padding-bottom: 182px;
  padding-top: 143px;
}

.section.section--outdoor-unit::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-pc%20svg) no-repeat top left;
  background-size: cover;
  content: '';
  display: block;
  height: 5.78331vw;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.section.section--outdoor-unit::after {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-pc%20svg) no-repeat top left;
  background-size: cover;
  bottom: -1px;
  content: '';
  display: block;
  height: 5.78331vw;
  left: 0;
  pointer-events: none;
  position: absolute;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  width: 100%;
}

.section.section--gray {
  background: #efefef;
}

.section.section--movie {
  background: #efefef;
}

.section__inr {
  margin-left: auto;
  margin-right: auto;
  max-width: 1192px;
  padding-left: 76px;
  padding-right: 76px;
}

.section__primary {
  margin-bottom: 56px;
}

.section__problem {
  color: #111431;
  margin-bottom: 48px;
  text-align: center;
}

.section__problem p {
  font-size: 1.125rem;
  letter-spacing: -0.9px;
  line-height: 1;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
}

.section__problem .section__problem__fukidashi {
  display: inline-block;
  font-size: 1.375rem;
  letter-spacing: -1.1px;
  line-height: 1.81;
  margin-top: 18px;
  padding-bottom: 17px;
  position: relative;
}

.section__problem .section__problem__fukidashi::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__section__fukidashi%20svg) no-repeat bottom center;
  background-size: 100% auto;
  bottom: 0;
  content: '';
  display: block;
  height: 13px;
  left: 0;
  position: absolute;
  width: 100%;
}

.section__ttl {
  text-align: center;
}

.section__ttl .section__ttl__ans {
  background: #fff;
  border: 1px solid #767aa3;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  color: #111431;
  display: inline-block;
  font-family: "Shippori Mincho B1";
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.27;
  margin-bottom: 16px;
  padding: 9px 11px 9px 12px;
  position: relative;
}

.section__ttl .section__ttl__ans::before {
  background: #fff;
  height: 1px;
  content: '';
  position: absolute;
  right: 9px;
  top: -1px;
  width: 5px;
  z-index: 1;
}

.section--gray .section__ttl .section__ttl__ans {
  background: #efefef;
}

.section--gray .section__ttl .section__ttl__ans::before {
  background: #efefef;
}

.section__ttl .section__ttl__main {
  color: #111431;
  display: block;
  font-family: "Shippori Mincho B1";
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -2.8px;
  line-height: 1.14;
}

.section__ttl .section__ttl__text {
  color: #111431;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33;
  margin-top: 28px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
}

.section__ttl .section__ttl__text sup {
  vertical-align: super;
  font-size: 0.75rem;
}

.section__ttl .section__ttl__notes {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 8px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
}

.section__img-sub {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  max-width: 870px;
  text-align: center;
  width: 100%;
}

.section__img__caption {
  color: #4f5169;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.28;
  margin-top: 24px;
  text-align: center;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
}

.section__img__caption > *:not(:first-child) {
  margin-top: 24px;
}

.section__series {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 56px;
}

.section__series > * {
  -ms-flex-preferred-size: 40px;
      flex-basis: 40px;
}

.section__series.section__series--all {
  display: block;
  text-align: center;
}

.section__series.section__series--all > * {
  background: #fff;
  border: 1px solid #ddd;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 2.28;
  padding: 8.5px 83.5px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
}

.js-toggle-tgt {
  display: none;
  padding-bottom: 40px;
  padding-top: 40px;
}

.section__desc {
  border-bottom: 1px solid rgba(17, 20, 49, 0.3);
  margin-top: 60px;
}

.section__desc .section__desc__ttl {
  border-top: 1px solid rgba(17, 20, 49, 0.3);
  position: relative;
}

.section__desc .section__desc__ttl-btn {
  background: transparent;
  border: none;
  border-radius: 0;
  color: #111431;
  cursor: pointer;
  font-family: "Shippori Mincho B1";
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.571;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 50px;
  padding-top: 19px;
  position: relative;
  text-align: left;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  width: 100%;
}

.section__desc .section__desc__ttl-btn.is-open .section__desc__ttl-icon::after {
  height: 0;
}

.section__desc .section__desc__ttl-icon {
  display: block;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
}

.section__desc .section__desc__ttl-icon::before, .section__desc .section__desc__ttl-icon::after {
  background: #111431;
  content: '';
  display: block;
  position: absolute;
}

.section__desc .section__desc__ttl-icon::before {
  height: 2px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.section__desc .section__desc__ttl-icon::after {
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 2px;
}

.section__desc__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -14px;
  margin-right: -14px;
}

.section__desc__col > * {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding-left: 14px;
  padding-right: 14px;
}

.section__desc__col.section__desc__col--01 > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.section__desc__col.section__desc__col--text {
  display: block;
}

.section__desc__col.section__desc__col--03 > * {
  -ms-flex-preferred-size: 33.3333%;
      flex-basis: 33.3333%;
}

.section__desc__col + .section__desc__col {
  margin-top: 45px;
}

.section__desc__col + .section__desc__col--text {
  margin-top: 20px;
}

.section__desc__col .section__col__ttl-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  font-weight: 700;
  gap: 0 14.47px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.section__desc__col .section__col__ttl-icon > p {
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.section__desc__col .section__col__ttl-icon > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 62.36px;
}

.section__desc__col .section__col__txt {
  font-size: 1rem;
  line-height: 2.33;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.section__desc__col .section__col__txt.section__col__txt--ttl {
  color: #111431;
  font-family: "Shippori Mincho B1";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.section__desc__col .section__col__txt.section__col__txt--l {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 23px;
}

.section__desc__col .section__col__txt sup {
  font-size: 0.625rem;
}

.section__desc__col .btn {
  margin-top: 28px;
}

.section__desc__col .section__col__notes {
  counter-reset: annotation;
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 12px;
  padding-left: 0;
}

.section__desc__col .section__col__notes li {
  counter-increment: annotation;
  padding-left: 2em;
  position: relative;
}

.section__desc__col .section__col__notes li::before {
  content: "※" counter(annotation);
  display: block;
  font-weight: 400 !important;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.section__desc__col + .btn {
  margin-top: 48px;
}

/* Contets
   ========================================================================== */
.section--kv {
  margin-bottom: -3.4407vw;
  padding-top: 0;
  position: relative;
}

.section--kv .kv__inr {
  height: 100%;
  left: 0;
  padding: 5.05124vw 1.46413vw 3.3675vw;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 5;
}

.section--kv .kv__ttl {
  margin-bottom: 6.58858vw;
  margin-left: auto;
  margin-right: auto;
  width: 69.47291vw;
}

.section--kv .kv__item {
  width: 51.83016vw;
}

.section--kv .kv__bg {
  position: relative;
  width: 100%;
  z-index: 1;
}

.section--kv .kv__bg img {
  width: 100%;
}

.section--kv .kv-scroll {
  background: #d7d7d7;
  height: 100px;
  overflow: hidden;
  position: absolute;
  right: 2.12299vw;
  top: 50.51245vw;
  width: 1px;
  z-index: 10;
}

.section--kv .kv-scroll::before {
  -webkit-animation: scrollAnim 2s infinite;
          animation: scrollAnim 2s infinite;
  background-color: #111431;
  content: "";
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.intro__text {
  color: #000;
  font-family: "Shippori Mincho B1";
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: 675px;
}

.intro__text p {
  display: inline-block;
  position: relative;
  z-index: 5;
}

.intro__text span {
  font-size: 2.625rem;
}

.intro__text.intro__text--01 {
  font-size: 1.5rem;
  letter-spacing: 0.125em;
  margin-bottom: 59px;
  text-shadow: 0px 12px 7.36px rgba(0, 0, 0, 0.08);
}

.intro__text.intro__text--02 {
  margin-bottom: 46px;
}

.intro__text.intro__text--02::after {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__hot%20png) no-repeat top left;
  background-size: 100% auto;
  bottom: 29px;
  content: '';
  display: block;
  height: 43px;
  position: absolute;
  right: -23px;
  width: 41px;
  z-index: 10;
}

.intro__text.intro__text--03 {
  margin-bottom: 49px;
}

.intro__text.intro__text--03 p::after {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__money%20png) no-repeat top left;
  background-size: 100% auto;
  bottom: 6px;
  content: '';
  display: block;
  height: 51px;
  position: absolute;
  left: -79px;
  width: 58px;
  z-index: 10;
}

.intro__text.intro__text--04 {
  margin-bottom: 43px;
}

.intro__text.intro__text--04::after {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__smell%20png) no-repeat top left;
  background-size: 100% auto;
  bottom: -27px;
  content: '';
  display: block;
  height: 53px;
  position: absolute;
  right: -10px;
  width: 59px;
  z-index: 10;
}

.intro__text.intro__text--05 {
  letter-spacing: 0.16em;
  margin-bottom: 50px;
}

.intro__text.intro__text--05::after {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__wrench%20png) no-repeat top left;
  background-size: 100% auto;
  bottom: 5px;
  content: '';
  display: block;
  height: 48px;
  left: -36px;
  position: absolute;
  width: 42px;
  z-index: 10;
}

.intro__text.intro__text--06 {
  margin-bottom: 79px;
}

.intro__text.intro__text--06::after {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__failure%20png) no-repeat top left;
  background-size: 100% auto;
  bottom: -14px;
  content: '';
  display: block;
  height: 43px;
  position: absolute;
  right: -34px;
  width: 54px;
  z-index: 10;
}

.intro__text.intro__text--07 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 26px;
}

.intro__text.intro__text--08 {
  color: #111431;
  font-size: 5.75rem;
  font-weight: 400;
  text-shadow: 0px 12px 7.36px rgba(0, 0, 0, 0.08);
}

.intro__text.intro__text--02::before, .intro__text.intro__text--03::before, .intro__text.intro__text--04::before, .intro__text.intro__text--05::before, .intro__text.intro__text--06::before {
  background: #e4e4e4;
  bottom: 0;
  content: '';
  display: block;
  height: 11px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.intro__scroll {
  pointer-events: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 46px;
  width: 82px;
}

.intro__scroll img {
  width: 100%;
}

.intro__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 37px;
  max-width: 904px;
  width: 100%;
}

.intro__anchor .anchor__item {
  overflow: hidden;
  width: calc((100% - 8px) / 2);
}

.intro__anchor .anchor__item .anchor__inr {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 11.83px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.intro__anchor .anchor__item .anchor__label {
  -webkit-box-shadow: 1.333px 1.333px 1.333px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 1.333px 1.333px 1.333px 0px rgba(0, 0, 0, 0.1);
  width: 3.66032vw;
}

.intro__anchor .anchor__item .anchor__text {
  font-size: 2.10835vw;
  margin-left: 4.83px;
}

.intro__anchor .anchor__item .anchor__link::before {
  bottom: 1px;
}

.intro__anchor .intro__anchor-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.intro__anchor .anchor__item-child {
  overflow: hidden;
  width: calc((100% - 8px) / 2);
}

.intro__anchor .anchor__item-child .anchor__inr {
  padding: 11.83px 20px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.intro__anchor .anchor__item-child .anchor__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.40556vw;
  height: 100%;
  margin-left: 0;
}

.intro__anchor .anchor__item-child .anchor__link::before {
  bottom: 0px;
}

.intro__anchor .anchor__link {
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 100%;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
}

.intro__anchor .anchor__link::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__arrow-bottom-white%20svg) no-repeat top left;
  background-size: 100% auto;
  content: '';
  display: block;
  height: 24px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 24px;
  z-index: 1;
}

.intro__anchor .anchor__inr {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.intro__anchor .anchor__text {
  font-family: "Shippori Mincho B1";
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.section--movie {
  margin-top: 104px;
  padding-bottom: 80px;
  padding-top: 90px;
}

.section--movie .movie__inr {
  padding-left: 76px;
  padding-right: 76px;
}

.section--movie .movie__ttl {
  color: #111431;
  text-align: center;
  font-family: "Shippori Mincho B1";
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.04;
  padding-bottom: 59px;
}

.section--movie .movie__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 41px 35px;
}

.section--movie .movie__item {
  -ms-flex-preferred-size: calc((100% - 35px) / 2);
      flex-basis: calc((100% - 35px) / 2);
}

.section--movie .movie__item:first-child {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.section--movie .movie__item:first-child .movie__item__inr {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.section--movie .movie__item:first-child .movie__btn {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.16;
}

.section--movie .movie__item:first-child .movie__btn::before {
  height: 30px;
  margin-top: 0;
  min-width: 30px;
  width: 30px;
}

.section--movie .movie__item__inr {
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px 41px;
  padding: 0;
  text-align: left;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.section--movie .movie__thumb {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  pointer-events: none;
}

.section--movie .movie__info {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  pointer-events: none;
}

.section--movie .movie__btn {
  color: #111431;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Shippori Mincho B1";
  font-size: 1.125rem;
  line-height: 1.55;
  position: relative;
  text-align: left;
}

.section--movie .movie__btn::before {
  background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__play%20svg) no-repeat top left;
  background-size: 100% auto;
  content: '';
  display: block;
  height: 20px;
  margin-right: 4px;
  margin-top: 4px;
  min-width: 20px;
  pointer-events: none;
  width: 20px;
}

.section--movie .movie__lineup {
  margin-top: 80px;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 60px;
}

.section--movie .movie__lineup__ttl {
  color: #111431;
  text-align: center;
  font-family: "Shippori Mincho B1";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.section--movie .movie__lineup__btn {
  margin-left: auto;
  margin-right: auto;
}

.fixed-contact {
  background: #fff;
  bottom: 0;
  -webkit-box-shadow: 0 -4px 12px #00000014;
          box-shadow: 0 -4px 12px #00000014;
  left: 0;
  padding: 9px;
  position: fixed;
  right: 0;
  -webkit-transform: translateY(106px);
          transform: translateY(106px);
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  width: 100%;
  z-index: 10;
}

.js-fixed-contact-show .fixed-contact {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fixed-contact .fixed-contact__btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ed7700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  position: relative;
  font-weight: 700;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  max-width: 592px;
  padding-left: 32px;
  padding-right: 52px;
  -webkit-transition: background-color .15s ease-out;
  transition: background-color .15s ease-out;
  width: 100%;
}

.fixed-contact .fixed-contact__btn::before {
  aspect-ratio: 1;
  background-image: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__icon__arrow-right-white02%20svg);
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
  content: '';
  height: 100%;
  position: absolute;
  right: 24px;
  top: 0;
  width: 24px;
}

.fixed-contact .fixed-contact__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 40px;
  width: 40px;
}

.fixed-contact .fixed-contact__texts {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 0;
}

.fixed-contact .fixed-contact__label {
  background: #fff;
  border-radius: 50px;
  color: #ed7700;
  display: inline-block;
  font-size: 1rem;
  text-wrap: nowrap;
  padding: 6px 12px;
}

.fixed-contact .fixed-contact__text {
  color: #fff;
  display: inline-block;
  font-size: 1.375rem;
  text-align: center;
}

.aside-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.aside-company .aside-company__inr {
  height: 100%;
  left: 0;
  padding: 6.00293vw 9.22401vw;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

.aside-company .aside-company__text {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.83;
  margin-bottom: 31px;
  text-shadow: 0px 0px 10px rgba(0, 91, 135, 0.6);
}

.aside-company img {
  width: 100%;
}

/* Unique Layout
   ========================================================================== */
.clean-streamer-desc {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  max-width: 870px;
  padding: 23px 27px 23px 21px;
}

.clean-streamer-desc .clean-streamer-desc__lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
}

.clean-streamer-desc .clean-streamer-desc__lst > *:not(.clean-streamer-desc__lst__item) {
  margin-top: 16.58px;
}

.clean-streamer-desc .clean-streamer-desc__lst__item {
  color: #5a646a;
  font-family: "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.75rem;
  line-height: 2;
  padding-left: 18px;
  position: relative;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
  width: 50%;
}

.clean-streamer-desc .clean-streamer-desc__lst__item::before {
  background: #5a646a;
  border-radius: 50%;
  content: '';
  height: 4px;
  left: 7px;
  position: absolute;
  top: 9px;
  width: 4px;
}

.clean-streamer-desc .clean-streamer-desc__txt {
  color: #5a646a;
  font-family: "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.8rem;
  line-height: 2.33;
  margin-top: 25px;
  padding-left: 7px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.energy-save-desc {
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  max-width: 870px;
  padding-bottom: 48px;
  padding-top: 32px;
}

.energy-save-desc .energy-save-desc__main-img {
  padding-left: 85px;
  padding-right: 80px;
}

.energy-save-desc .energy-save-desc__ttl {
  color: #08998e;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 1.333;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.energy-save-desc .energy-save-desc__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 38px;
  margin-top: 25px;
  padding-left: 114px;
  padding-right: 114px;
}

.energy-save-desc .energy-save-desc__col__item-img {
  -ms-flex-preferred-size: 182px;
      flex-basis: 182px;
}

.energy-save-desc .energy-save-desc__item-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  margin-top: 17px;
}

.energy-save-desc .energy-save-desc__item-set__txt {
  color: #6e6c6c;
  font-size: 1rem;
  line-height: 1.62;
  padding-top: 3px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.outdoor-unit-desc {
  background: #fff;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  max-width: 870px;
  padding: 35px 20px 20px;
}

.outdoor-unit-desc .outdoor-unit-desc__ttl {
  color: #111431;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.outdoor-unit-desc .outdoor-unit-desc__ttl sup {
  font-size: 0.75rem;
}

.outdoor-unit-desc .outdoor-unit-desc__subttl {
  color: #111431;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.33;
  margin-top: 35px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.outdoor-unit-desc .outdoor-unit-desc__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 21px;
  margin-top: 15px;
}

.outdoor-unit-desc .outdoor-unit-desc__col__img {
  width: 445px;
}

.outdoor-unit-desc .outdoor-unit-desc__col__info-item + .outdoor-unit-desc__col__info-item {
  margin-top: 30px;
}

.outdoor-unit-desc .outdoor-unit-desc__ttl-icon {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #111431;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 11px;
  margin-bottom: 16px;
}

.outdoor-unit-desc .outdoor-unit-desc__ttl-icon__icon {
  border: 1px solid #ddd;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  min-width: 48px;
  padding: 5px 5px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.outdoor-unit-desc .outdoor-unit-desc__ttl-icon__ttl {
  color: #111431;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: -2px;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.outdoor-unit-desc .outdoor-unit-desc__ttl-icon__ttl sup {
  font-size: 0.625rem;
}

.outdoor-unit-desc .outdoor-unit-desc__info__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 23px;
}

.outdoor-unit-desc .outdoor-unit-desc__info__col__img {
  -ms-flex-preferred-size: 140px;
      flex-basis: 140px;
}

.outdoor-unit-desc .outdoor-unit-desc__info__col__text {
  -ms-flex-preferred-size: 190px;
      flex-basis: 190px;
  font-size: 1rem;
  line-height: 1.66;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.outdoor-unit-desc .outdoor-unit-desc__notes {
  font-size: 0.75rem;
  line-height: 1.66;
  margin-top: 16px;
  padding-left: 12px;
  position: relative;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.outdoor-unit-desc .outdoor-unit-desc__notes::before {
  content: '※';
  font-size: 0.75rem;
  left: 0;
  line-height: 1.66;
  position: absolute;
  top: 0;
  -webkit-transform: scaleX(0.95);
          transform: scaleX(0.95);
  -webkit-transform-origin: left;
          transform-origin: left;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes scrollAnim {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scrollAnim {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@media screen and (max-width: 767px) {
  .modal-dialog {
    margin: 0;
    height: 100%;
    max-width: 100%;
  }
  .modal-content {
    height: 100%;
    padding: 0;
  }
  .modal-body {
    padding: 20px;
    height: 100%;
  }
  .modal-print {
    display: none;
  }
  .g-modal_close {
    right: 5.1282051282%;
  }
  body {
    padding-bottom: 56px;
  }
  .u-hidden-sp {
    display: none !important;
  }
  .btn.btn--primary {
    height: 40px;
    width: 100%;
  }
  .btn.btn--secondary {
    padding: 5px 40px;
    width: 100%;
  }
  .section {
    padding-top: 56px;
  }
  .section.section--intro {
    padding-bottom: 110px;
    padding-top: 46px;
  }
  .section.section--intro::before {
    background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-sp%20svg) no-repeat top left;
    background-size: cover;
    height: 10.66667vw;
    bottom: -1px;
  }
  .section.section--premium {
    padding-bottom: 88px;
  }
  .section.section--clean-streamer {
    padding-bottom: 120px;
    padding-top: 96px;
  }
  .section.section--clean-streamer::before {
    background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-sp%20svg) no-repeat top left;
    background-size: cover;
    height: 10.66667vw;
    top: -1px;
  }
  .section.section--clean-streamer::after {
    background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-sp%20svg) no-repeat top left;
    background-size: cover;
    height: 10.66667vw;
  }
  .section.section--energy-save {
    padding-bottom: 68px;
  }
  .section.section--outdoor-unit {
    padding-bottom: 128px;
    padding-top: 96px;
  }
  .section.section--outdoor-unit::before {
    background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-sp%20svg) no-repeat top left;
    background-size: cover;
    height: 10.66667vw;
  }
  .section.section--outdoor-unit::after {
    background: url(/-/media/Project/Daikin/ac_daikin_co_jp/roomaircon/kaitou/img/img__bg__cover-sp%20svg) no-repeat top left;
    background-size: cover;
    height: 10.66667vw;
  }
  .section__inr {
    max-width: 100%;
    padding-left: 19px;
    padding-right: 19px;
  }
  .section--intro .section__inr {
    padding-left: 0;
    padding-right: 0;
  }
  .section__primary {
    margin-bottom: 32px;
  }
  .section__problem {
    margin-bottom: 32px;
  }
  .section__problem p {
    font-size: 0.875rem;
    line-height: 1.28;
    letter-spacing: -0.7px;
  }
  .section__problem .section__problem__fukidashi {
    font-size: 1.125rem;
    line-height: 1.77;
    letter-spacing: -0.9px;
    margin-top: 24px;
    padding-bottom: 21.42px;
  }
  .section__problem .section__problem__fukidashi::before {
    height: 13.42px;
  }
  .section__ttl .section__ttl__ans {
    -webkit-box-shadow: 1.583px 1.583px 1.583px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 1.583px 1.583px 1.583px 0px rgba(0, 0, 0, 0.1);
    font-size: 1.08856rem;
    margin-bottom: 24px;
    padding: 6.62px 8.83px 7.28px 9.5px;
  }
  .section__ttl .section__ttl__ans::before {
    right: 6.5px;
    width: 4px;
  }
  .section__ttl .section__ttl__main {
    font-size: 2rem;
    line-height: 1.37;
    letter-spacing: -3.2px;
  }
  .section__ttl .section__ttl__text {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 4px;
  }
  .section__ttl .section__ttl__text sup {
    display: inline-block;
    font-size: 0.625rem;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .section__ttl .section__ttl__notes {
    line-height: 1.66;
    margin-top: 0;
  }
  .section__img {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .section__img-sub {
    margin-top: 32px;
  }
  .section__img-sub img {
    width: 100%;
  }
  .section__img__caption {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 36.42px;
    padding-left: 19px;
    padding-right: 19px;
    text-align: left;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .section__series {
    gap: 0 4px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 40px;
  }
  .section__series > * {
    -ms-flex-preferred-size: 30px;
        flex-basis: 30px;
  }
  .js-toggle-tgt {
    padding-bottom: 33px;
    padding-top: 32px;
  }
  .section__desc {
    margin-top: 48px;
  }
  .section__desc .section__desc__ttl-btn {
    font-size: 1.25rem;
    line-height: 1.6;
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .section__desc__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .section__desc__col > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .section__desc__col img {
    width: 100%;
  }
  .section__desc__col.section__desc__col--01 > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .section__desc__col.section__desc__col--01 + .btn {
    margin-top: 40px;
  }
  .section__desc__col.section__desc__col--03 > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .section__desc__col.section__desc__col--03 + .btn {
    margin-top: 40px;
  }
  .section__desc__col + .section__desc__col {
    margin-top: 32px;
  }
  .section__desc__col + .section__desc__col--text {
    margin-top: 24px;
  }
  .section__desc__col .section__col__ttl-icon {
    font-size: 0.875rem;
    line-height: 1.71;
    margin-bottom: 8px;
  }
  .section__desc__col .section__col__txt {
    font-size: 0.875rem;
    line-height: 2;
  }
  .section__desc__col .section__col__txt.section__col__txt--ttl {
    font-size: 1.125rem;
    line-height: 1.33;
    text-align: center;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .section__desc__col .section__col__txt.section__col__txt--l {
    font-size: 0.875rem;
    line-height: 2;
    margin-bottom: 16px;
    text-align: center;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .section__desc__col .btn {
    margin-top: 24px;
  }
  .section__desc__col .section__col__notes {
    margin-top: 10px;
    line-height: 2;
  }
  .section__desc__col + .btn {
    margin-top: 24px;
  }
  .section--kv {
    margin-bottom: -6.66667vw;
    padding-top: 0;
  }
  .section--kv .kv__inr {
    padding: 0 0 15.46667vw;
  }
  .section--kv .kv__ttl {
    margin-bottom: 0;
    width: 100%;
  }
  .section--kv .kv__item {
    width: 74vw;
  }
  .intro__text {
    font-size: 0.875rem;
    max-width: 375px;
    width: calc(100% - 50px);
  }
  .intro__text span {
    font-size: 1.25rem;
  }
  .intro__text.intro__text--01 {
    font-size: 1rem;
    margin-bottom: 32.5px;
  }
  .intro__text.intro__text--02 {
    margin-bottom: 23.5px;
  }
  .intro__text.intro__text--02::after {
    bottom: 20px;
    height: 22px;
    right: 32px;
    width: 21px;
  }
  .intro__text.intro__text--03 {
    margin-bottom: 23.5px;
  }
  .intro__text.intro__text--03 p::after {
    bottom: 7px;
    height: 26px;
    left: -45px;
    width: 29px;
  }
  .intro__text.intro__text--04 {
    margin-bottom: 23.5px;
  }
  .intro__text.intro__text--04::after {
    bottom: 1.5px;
    height: 18.5px;
    right: 12.5px;
    width: 19px;
  }
  .intro__text.intro__text--05 {
    margin-bottom: 23.5px;
  }
  .intro__text.intro__text--05::after {
    bottom: 10px;
    height: 24px;
    left: -4px;
    width: 21px;
  }
  .intro__text.intro__text--06 {
    margin-bottom: 57.5px;
  }
  .intro__text.intro__text--06::after {
    bottom: -25px;
    height: 31px;
    right: 2.5px;
    width: 31px;
  }
  .intro__text.intro__text--07 {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .intro__text.intro__text--08 {
    font-size: 2.5rem;
  }
  .intro__text.intro__text--02::before, .intro__text.intro__text--03::before, .intro__text.intro__text--04::before, .intro__text.intro__text--05::before, .intro__text.intro__text--06::before {
    height: 5.5px;
  }
  .intro__scroll {
    margin-top: 28.5px;
    width: 60px;
  }
  .intro__anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px 0;
    margin-top: 44px;
    padding-left: 19px;
    padding-right: 19px;
    max-width: 100%;
  }
  .intro__anchor .anchor__item {
    width: 100%;
  }
  .intro__anchor .anchor__item .anchor__label {
    width: 53.33px;
  }
  .intro__anchor .anchor__item .anchor__text {
    font-size: 1.4rem;
  }
  .intro__anchor .anchor__item .anchor__link::before {
    bottom: 0px;
  }
  .intro__anchor .anchor__item-child .anchor__inr {
    padding: 10px 22px 14px;
  }
  .intro__anchor .anchor__item-child .anchor__label {
    width: 40px;
  }
  .intro__anchor .anchor__item-child .anchor__text {
    font-size: 0.875rem;
  }
  .intro__anchor .anchor__text {
    line-height: 1.42;
  }
  .section--movie {
    margin-top: 88px;
    padding-bottom: 56px;
    padding-top: 66.5px;
  }
  .section--movie .movie__inr {
    padding-left: 19px;
    padding-right: 19px;
  }
  .section--movie .movie__ttl {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 26.5px;
  }
  .section--movie .movie__list {
    display: block;
  }
  .section--movie .movie__item:first-child {
    padding-bottom: 16px;
  }
  .section--movie .movie__item:first-child .movie__item__inr {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section--movie .movie__item:first-child .movie__info {
    margin-top: 16px;
  }
  .section--movie .movie__item:first-child .movie__btn {
    font-size: 1.125rem;
    line-height: 1.55;
  }
  .section--movie .movie__item:first-child .movie__btn::before {
    height: 20px;
    margin-top: 4px;
    min-width: 20px;
    width: 20px;
  }
  .section--movie .movie__item + .movie__item {
    margin-top: 24px;
  }
  .section--movie .movie__item__inr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 17.5px;
  }
  .section--movie .movie__btn {
    font-size: 0.75rem;
    line-height: 1.66;
  }
  .section--movie .movie__btn::before {
    height: 14px;
    margin-top: 3px;
    min-width: 14px;
    width: 14px;
  }
  .section--movie .movie__lineup {
    margin-top: 56px;
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .section--movie .movie__lineup__ttl {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 12px;
  }
  .fixed-contact {
    padding: 6px;
  }
  .fixed-contact .fixed-contact__btn {
    height: 44px;
    max-width: 100%;
    padding-left: 19px;
    padding-right: 35px;
  }
  .fixed-contact .fixed-contact__btn::before {
    height: auto;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 12px;
  }
  .fixed-contact .fixed-contact__icon {
    min-width: 24px;
    width: 24px;
  }
  .fixed-contact .fixed-contact__label {
    font-size: 0.625rem;
  }
  .fixed-contact .fixed-contact__text {
    font-size: 0.875rem;
  }
  .aside-company .aside-company__inr {
    padding: 9.6vw 5.06667vw 10.13333vw;
  }
  .aside-company .aside-company__text {
    font-size: 0.75rem;
    line-height: 1.66;
    margin-bottom: 16px;
    text-align: center;
    text-shadow: 0px 0px 10px #005B87;
  }
  .clean-streamer-desc {
    margin-top: 32px;
    max-width: 100%;
    padding: 18px 18px 20px;
  }
  .clean-streamer-desc .clean-streamer-desc__lst {
    display: block;
  }
  .clean-streamer-desc .clean-streamer-desc__lst__item {
    font-size: 0.8rem;
    margin-top: 12px;
    padding-left: 21px;
    width: 100%;
  }
  .clean-streamer-desc .clean-streamer-desc__lst__item::before {
    height: 3px;
    left: 11.5px;
    top: 10px;
    width: 3px;
  }
  .clean-streamer-desc .clean-streamer-desc__txt {
    line-height: 2;
    margin-top: 20px;
    padding-left: 11px;
  }
  .energy-save-desc {
    border-width: 1px;
    margin-top: 32px;
    max-width: 100%;
    padding-bottom: 20.42px;
    padding-top: 19.58px;
  }
  .energy-save-desc .energy-save-desc__main-img {
    padding-left: 17px;
    padding-right: 18px;
  }
  .energy-save-desc .energy-save-desc__ttl {
    font-size: 0.875rem;
    letter-spacing: -1.4px;
    line-height: 1;
    margin-top: 25.85px;
    text-align: center;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .energy-save-desc .energy-save-desc__col {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 14px;
    padding-left: 20px;
    padding-right: 36px;
  }
  .energy-save-desc .energy-save-desc__col__item-img {
    -ms-flex-preferred-size: 108.131px;
        flex-basis: 108.131px;
  }
  .energy-save-desc .energy-save-desc__col__item {
    -ms-flex-preferred-size: 156px;
        flex-basis: 156px;
  }
  .energy-save-desc .energy-save-desc__item-set {
    display: block;
    margin-top: 0;
  }
  .energy-save-desc .energy-save-desc__item-set__txt {
    font-size: 0.625rem;
    line-height: 1.19;
    padding-left: 33px;
    padding-top: 9px;
  }
  .outdoor-unit-desc {
    margin-top: 32px;
    max-width: 100%;
    padding: 24px 0 16.6px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__ttl {
    font-size: 1.125rem;
    line-height: 1.5;
    padding-left: 20px;
    padding-right: 17px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__subttl {
    font-size: 0.875rem;
    margin-top: 13px;
    padding-left: 20px;
    padding-right: 17px;
    text-align: center;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .outdoor-unit-desc .outdoor-unit-desc__col {
    display: block;
    padding-left: 20px;
    padding-right: 17px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__col__img {
    width: 100%;
  }
  .outdoor-unit-desc .outdoor-unit-desc__col__info {
    margin-top: 25px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__col__info-item + .outdoor-unit-desc__col__info-item {
    margin-top: 25px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__ttl-icon {
    margin-bottom: 16px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__ttl-icon__ttl {
    font-size: 0.875rem;
    margin-top: 1px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__info__col__text {
    font-size: 0.875rem;
  }
  .outdoor-unit-desc .outdoor-unit-desc__notes-wrap {
    padding-left: 16px;
    padding-right: 9px;
  }
}
@media (max-width: 680px) {
  .contactModal {
    overflow-y: scroll;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contactModal__content {
    padding: 15px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .contactModal__close {
    margin-left: auto;
    position: relative;
  }
  .contactModal .is-pc {
    display: none;
  }
  .contactModal .is-sp {
    display: block;
  }
  .contactModalTab {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
  .contactModalTab__block a {
    height: 46px;
  }
  .contactModalTab__block--setting {
    width: 46%;
  }
  .contactModalTab__block--setting a {
    gap: 3px;
  }
  .contactModalTab__block--setting a::before {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-image: url("/-/media/Project/Daikin/ac_daikin_co_jp/dept_common/images/contact_modal/tab_soudan_sp png");
    top: -5px;
  }
  .contactModalTab__block--repair {
    width: 35%;
  }
  .contactModalTab__block--repair a {
    gap: 3px;
  }
  .contactModalTab__block--repair a::before {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 45px;
    height: 34px;
  }
  .contactModalTab__label {
    display: none;
  }
  .contactModalTab__name {
    font-size: 13px;
  }
  .contactModalMain {
    padding: 15px 20px;
    border-radius: 0 6px 6px 6px;
  }
  .contactModalMain__lead {
    margin-bottom: 15px;
  }
  .contactModalMain__heading {
    font-size: 24px;
  }
  .contactModalMain__text {
    font-size: 11px;
  }
  .contactModalMain__text br {
    display: none;
  }
  .contactModalCta {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactModalCta__block--form a {
    height: 70px;
  }
  .contactModalCta__block--tel a {
    pointer-events: inherit;
  }
  .contactModalForm {
    font-size: 16px;
  }
  .contactModalForm::before {
    width: 27px;
    height: 20px;
  }
  .contactModalTel {
    padding: 8px 0;
    border: 2px solid #ef701c;
    border-radius: 6px;
  }
  .contactModalTel__heading {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .contactModalTel__number {
    width: 200px;
  }
  .contactModalTel__time {
    font-size: 11px;
  }
  .contactModalOther__heading {
    font-size: 14px;
    gap: 10px;
  }
  .contactModalOther__blocks {
    gap: 5px;
  }
  .contactModalOther__block {
    height: 50px;
  }
  .contactModalOther__block a {
    padding: 0 7px;
    font-size: 11px;
  }
  .contactModalOther__block a::after {
    width: 4px;
  }
  .contactModalNews {
    margin: 20px -20px -20px;
  }
  .contactModalRepair {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .contactModalRepair__block--aichat {
    --iconPadding: 0 10px 0 0;
    --gridTempColumns: 130px auto;
    --gridTempRows: auto;
    --textGridColumn: 2 / 3;
    --textGridRow: 1;
  }
  .contactModalRepair__block--default {
    --iconPadding: 0;
    --iconHeight: 30px;
    --iconImgHeight: 30px;
    --gridTempColumns: 70px auto;
    --gridTempRows: repeat(2, auto);
    --textGridColumn: 1 / 3;
    --textGridRow: 2;
  }
  .contactModalRepair__block--default::after {
    display: block;
  }
  .contactModalRepair__name {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .contactModalRepair__name.is-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contactModalRepair__inner a {
    padding: 10px 12px;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: var(--gridTempColumns);
    grid-template-rows: var(--gridTempRows);
  }
  .contactModalRepair__icon {
    padding: var(--iconPadding);
    margin-bottom: 5px;
  }
  .contactModalRepair__text {
    grid-column: var(--textGridColumn);
    grid-row: var(--textGridRow);
    font-size: 12px;
    line-height: 1.4;
  }
  .contactModalAnnounce {
    font-size: 12px;
  }
  .contactModalAnnounce__inner {
    gap: 5px;
  }
  .contactModalAnnounce__heading::before {
    width: 18px;
    height: 18px;
  }
  .contactModalAnnounce__text a {
    font-size: 12px;
  }
  .contactModalFloatingBnr {
    height: auto;
  }
  .contactModalFloatingBnr__btn img {
    width: 100%;
    height: auto;
  }
  body .contactModal.is-show .ac_cv-modal__tabs {
    height: 50px;
  }
}
@media (max-width: 960px) {
  .contactModalOther__blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  .contactModalFloatingBnr {
    height: 60px;
  }
}
@media (max-width: 1150px) {
  .contactModalFloatingBnr__inner {
    padding-right: 80px;
  }
}
@media print, (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
  .section__desc__col .section__col__notes {
    letter-spacing: -0.2px;
  }
  .section--movie .movie__lineup__btn {
    height: 56px;
    width: 384px;
  }
  .energy-save-desc .energy-save-desc__item-set__img {
    -ms-flex-preferred-size: 216px;
        flex-basis: 216px;
  }
  .outdoor-unit-desc .outdoor-unit-desc__col__info {
    -ms-flex-preferred-size: 364px;
        flex-basis: 364px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn.btn--primary:hover {
    background: #3741a3;
    text-decoration: none;
  }
  .btn.btn--secondary:hover {
    background: linear-gradient(148deg, #00BDFD -20.52%, #005E8C 112.31%);
    text-decoration: none;
  }
  .section__desc .section__desc__ttl-btn:hover {
    background: rgba(17, 20, 49, 0.05);
  }
  .intro__anchor .anchor__link:hover {
    opacity: .7;
  }
  .section--movie .movie__item__inr:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .fixed-contact .fixed-contact__btn:hover {
    background: #f2944b;
    text-decoration: none;
  }
}
@media screen and (min-width: 1366px) {
  .intro__anchor .anchor__item .anchor__label {
    width: 50px;
  }
  .intro__anchor .anchor__item .anchor__text {
    font-size: 1.8rem;
  }
  .intro__anchor .anchor__item-child .anchor__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 910px) and (min-width: 768px) {
  .intro__anchor .anchor__link::before {
    height: 12px;
    width: 12px;
  }
}
